From: Richard M. Stallman Date: Fri, 17 Nov 1995 22:27:47 +0000 (+0000) Subject: (next-file): Make interactive arg t if had any prefix arg. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~85493 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=c20032c4e8ed922921b2fd903221fe3dfb12b35f;p=emacs.git (next-file): Make interactive arg t if had any prefix arg. --- diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el index 2b4a876e494..2f21bacbeec 100644 --- a/lisp/progmodes/etags.el +++ b/lisp/progmodes/etags.el @@ -1248,7 +1248,8 @@ Non-nil second argument NOVISIT means use a temporary buffer Value is nil if the file was already visited; if the file was newly read in, the value is the filename." - (interactive "P") + ;; Make the interactive arg t if there was any prefix arg. + (interactive (list (if current-prefix-arg t))) (cond ((not initialize) ;; Not the first run. )